-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSolution.java
More file actions
56 lines (49 loc) · 1.54 KB
/
Solution.java
File metadata and controls
56 lines (49 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import java.util.Scanner;
public class StackUsingArray {
static final int MAX = 100;
static int[] stack = new int[MAX];
static int top = -1;
static void push() {
if (top == MAX - 1) {
System.out.println("Stack overflow!");
return;
}
Scanner scanner = new Scanner(System.in);
System.out.print("Enter value to push: ");
int val = scanner.nextInt();
stack[++top] = val;
System.out.println(val + " pushed onto stack.");
}
static void pop() {
if (top == -1) {
System.out.println("Stack underflow!");
return;
}
System.out.println(stack[top--] + " popped from stack.");
}
static void display() {
if (top == -1) {
System.out.println("Stack is empty.");
return;
}
System.out.println("Stack elements:");
for (int i = top; i >= 0; i--) {
System.out.println(stack[i]);
}
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
while (true) {
System.out.println("\n1. Push\n2. Pop\n3. Display\n4. Exit");
System.out.print("Enter your choice: ");
int choice = scanner.nextInt();
switch (choice) {
case 1: push(); break;
case 2: pop(); break;
case 3: display(); break;
case 4: return;
default: System.out.println("Invalid choice!");
}
}
}
}